C&C++ / 1D Array Problem List
- How to scan and print 1D array in C
- How to find the maximum value in 1D array.
- How to find the minimum value in 1D array.
- Printing all the even elements of 1D array.
- Printing all the odd elements of 1D array.
- Sorting elements of 1D array in descending order(big to small) in C.
- Delete an element from a 1D array in C.
- Finding the Sum of 1D array in C
- Counting frequency of each element of 1D array in C.
- Finding the maximum frequency from 1D array in C.
- Replacing a value of 1D array in C.
- Add two 1D array in C.
- Subtract two 1D array in C
- Searching an element from 1D array in C.
- Replace the duplicate value of 1D array by (-1) in C.
- Left Shift 1D array in C.
- Replace Array Elements which is Divisible by 3 in C.
- Find Highest Occurrences from 1D array in C.
- Insert a Value in a sorted 1D Array in C.
- Reverse An Array without using an extra array in C.
- Count Total Duplicate Element in Array in C++.
- Compare Two Array and save it to Another Array By save the small array in 1st in C++.
- Array Insert,Delete,Access and Search in C++
- Sort Top Goal Scorer in C
- Find Minimum value from an Array By applying Divide and Conquer Algorithm.